home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 July / CHIP_CD_2005-07.iso / software / att / attsetup.exe / plugins / shared memory / Delphi / attshmem.dpr < prev    next >
Text File  |  2005-02-13  |  194b  |  14 lines

  1. program attshmem;
  2.  
  3. uses
  4.   Forms,
  5.   uMain in 'uMain.pas' {frmMain};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TfrmMain, frmMain);
  12.   Application.Run;
  13. end.
  14.